home *** CD-ROM | disk | FTP | other *** search
- /*
- * LongCoords.h
- *
- * C interface to the WASTE text engine:
- * Long Coordinates
- *
- * Copyright (c) 1993-1994 Merzwaren
- * All Rights Reserved
- *
- * Changes:
- *
- * Changed LongPoint to LongPt (same as think class libraries)
- * Put // after endif (SC++ doesn't reconize #endif identifier syntax)
- * If __LONGCOORDINATES__ is defined (by the Think Class Libraries, the
- * the definitions are skipped
- *
- */
-
- #ifndef __LONGCOORDINATES__
- #ifndef _LongCoords_
- #define _LongCoords_
-
- typedef struct LongPoint {
- long v;
- long h;
- } LongPt;
-
- typedef struct LongRect {
- long top;
- long left;
- long bottom;
- long right;
- } LongRect;
-
- #endif // _LongCoords_
- #endif // __LONGCOORDINATES__
-